diff options
| author | joonhoekim <26rote@gmail.com> | 2025-12-02 20:04:17 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-12-02 20:04:17 +0900 |
| commit | 7bdddbacf8610140c0c9db7ccb09d546203ce380 (patch) | |
| tree | c59df43eac4c256d54dbea9491e1604535551230 /app/[lng]/evcp/(evcp)/(master-data)/bid-projects/page.tsx | |
| parent | 87ab8fa7aa845e3aa56941d9eeaba03f36f4b3d3 (diff) | |
(김준회) 메뉴명과 화면 내 h태그 일치 시키기, i18n 적용
Diffstat (limited to 'app/[lng]/evcp/(evcp)/(master-data)/bid-projects/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/(master-data)/bid-projects/page.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/[lng]/evcp/(evcp)/(master-data)/bid-projects/page.tsx b/app/[lng]/evcp/(evcp)/(master-data)/bid-projects/page.tsx index e98d391b..92879fe9 100644 --- a/app/[lng]/evcp/(evcp)/(master-data)/bid-projects/page.tsx +++ b/app/[lng]/evcp/(evcp)/(master-data)/bid-projects/page.tsx @@ -9,10 +9,14 @@ import { BidProjectsTable } from "@/lib/bidding-projects/table/projects-table" import type { Filter } from "@/types/table" interface IndexPageProps { + params: Promise<{ lng: string }> searchParams: Promise<SearchParams> } export default async function IndexPage(props: IndexPageProps) { + const params = await props.params + const { lng } = params + const searchParams = await props.searchParams const search = searchParamsBidProjectsCache.parse(searchParams) |
